box: Remove gtk_box_pack_end
authorTimm Bäder <mail@baedert.org>
Sat, 29 Dec 2018 08:43:15 +0000 (09:43 +0100)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 24 Jan 2019 00:30:46 +0000 (19:30 -0500)
docs/reference/gtk/gtk4-sections.txt
gtk/gtkbox.c
gtk/gtkbox.h

index f8f67176802586d60f6c34bc83c94111b695487f..1a1677a671af95da59bafcdc87dfd38beae73bdb 100644 (file)
@@ -320,7 +320,6 @@ GtkBox
 GtkBoxClass
 gtk_box_new
 gtk_box_pack_start
-gtk_box_pack_end
 gtk_box_get_homogeneous
 gtk_box_set_homogeneous
 gtk_box_get_spacing
index e5495dd18ff7dcf1f80916d63420102c88ae81fe..3db2291886d21d6407b37966bb5d848ebf9d6e78 100644 (file)
@@ -1020,22 +1020,6 @@ gtk_box_pack_start (GtkBox    *box,
   gtk_box_pack (box, child);
 }
 
-/**
- * gtk_box_pack_end:
- * @box: a #GtkBox
- * @child: the #GtkWidget to be added to @box
- *
- * Adds @child to @box, packed with reference to the end of @box.
- * The @child is packed after (away from end of) any other child
- * packed with reference to the end of @box.
- */
-void
-gtk_box_pack_end (GtkBox    *box,
-                 GtkWidget *child)
-{
-  gtk_box_pack (box, child);
-}
-
 /**
  * gtk_box_set_homogeneous:
  * @box: a #GtkBox
index dd7189556222710ee1761e8404fd6c71f8dabafe..aa148db0dbb2bd91d622aa3f2987fce621e1a431 100644 (file)
@@ -80,10 +80,6 @@ GDK_AVAILABLE_IN_ALL
 void        gtk_box_pack_start          (GtkBox         *box,
                                          GtkWidget      *child);
 GDK_AVAILABLE_IN_ALL
-void        gtk_box_pack_end            (GtkBox         *box,
-                                         GtkWidget      *child);
-
-GDK_AVAILABLE_IN_ALL
 void        gtk_box_set_homogeneous     (GtkBox         *box,
                                          gboolean        homogeneous);
 GDK_AVAILABLE_IN_ALL